From: Richard M. Stallman Date: Wed, 14 Sep 1994 09:17:32 +0000 (+0000) Subject: (Info-mode-map): Bind M-s like s. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~90324 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=47fc33caf07695ee88fb8963ef8a4c93facf97bb;p=emacs.git (Info-mode-map): Bind M-s like s. --- diff --git a/lisp/info.el b/lisp/info.el index d2c0c669500..59416d79329 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -1415,6 +1415,8 @@ If no reference to follow, moves to the next node, or up if none." (define-key Info-mode-map "p" 'Info-prev) (define-key Info-mode-map "q" 'Info-exit) (define-key Info-mode-map "s" 'Info-search) + ;; For consistency with Rmail. + (define-key Info-mode-map "\M-s" 'Info-search) (define-key Info-mode-map "t" 'Info-top-node) (define-key Info-mode-map "u" 'Info-up) (define-key Info-mode-map "," 'Info-index-next)